home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap17 / dun17_9.txt < prev   
Encoding:
Text File  |  1997-12-18  |  198 b   |  10 lines

  1. function inputNumbers(event)
  2. {
  3.   // The ASCII value for '0' is 48 and for
  4.   // '9' is 57.
  5.   if (event.which >= 48 && event.which <= 57)
  6.     return true;
  7.   else
  8.     return false;
  9. }
  10.